This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
I suspect that there's an extraneous blank line in the incoming Internet message
If this was working before -- that is, no base64 encoded text in the received message body -- and it's not working now because the received message body is encoded, well, this can happen in a couple of ways.
The first way -- if the incoming message has an arbitrary line of text embedded in the Internet message headers, then the Domino SMTP server may not be able to determine where the headers end and the body begins.
For example:
To: me@mydomain.com From: you@yourdomain.com Subject: messed up message Date: Mon, 16 Mar 2015 20:57:00 -0400 MIME-Version: 1.0 This is a line of text that is not a header Content-type: text/plain
This is the text in the body.
When the Domino SMTP server parses the line 'This is a line....', it makes the best of a bad situation and treats it as the first line of the body. This would be the resultant body in the received message:
This is a line of text that is not a header Content-type: text/plain
This is the text in the body.
The second way -- and this is what I think is happening in your scenario -- is when there's a blank line incorrectly inserted before the end of the message headers, like so:
To: me@mydomain.com From: you@yourdomain.com Subject: messed up message Date: Mon, 16 Mar 2015 20:57:00 -0400 MIME-Version: 1.0